home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
HENSA
/
TEXTPROC
/
GAWK.ARC
/
gawk-2154
/
missing
/
c
/
memset
< prev
next >
Wrap
Text File
|
1989-10-25
|
261b
|
19 lines
/*
* memset --- initialize memory
*
* We supply this routine for those systems that aren't standard yet.
*/
char *
memset (dest, val, l)
register char *dest, val;
register int l;
{
register char *ret = dest;
while (l--)
*dest++ = val;
return ret;
}